<script type="text/javascript">
                document.write("<div>&#1670;&#1607;&#1575;&#1585;&#1588;&#1606;&#1576;&#1607; &#1785; &#1578;&#1610;&#1585; &#1777;&#1779;&#1785;&#1781;</div>");
            </script>

//add this to the end of loop single for showing the comments part
<?php comments_template( '', true ); ?>


add this where u want to have post cration date
<?php starkers_posted_on(); ?>

add post navigation inside post pages
<nav>
			<?php previous_post_link( '%link', '' . _x( '&larr;', 'Previous post link', 'starkers' ) . ' %title' ); ?>
			<?php next_post_link( '%link', '%title ' . _x( '&rarr;', 'Next post link', 'starkers' ) . '' ); ?>
		</nav>

<?php get_sidebar(); ?>
<?php
	get_sidebar( 'footer' );
?>

*********************************************
pagination:

limit the max number of posts in first page.
add this to index.php:
<?php query_posts ($query_string . '&showposts=4'); ?>

Use this to activate the new pagination WP-PageNavi Plugin:
overwrite it on any navigation code (NAV tags)
<?php wp_pagenavi(); ?>

add this to style.css:
.wp-pagenavi { font-family: yekan, Helvetica; font-size: 70%; color:red;}
.current {color: blue;}

use these for border colors in pagenavi-css.css inside the wp-pagenavi plugin directory:
!!! not paste these lines , just change the color codes !!!
.wp-pagenavi a, .wp-pagenavi span: rgb(177,116,56);
.wp-pagenavi a:hover, .wp-pagenavi span.current: rgb(117,95,49);


**********************************************
better wordpress menus:

in header.php , replace menu PHP with this:
<?php wp_nav_menu( array( 'container' => 'nav', 'fallback_cb' => 'starkers_menu', 'theme_location' => 'primary') ); ?>

*********************************************
         
     <!-- Copy to where you want to display the Slideshow -->
<div id="mhrotatorToken01">
<style type="text/css"> #mhrotatorToken01 img { display:none; } </style>
    
<a href="http://www.google1.com"><img src="http://127.0.0.1/wordpress/wp-content/uploads/2016/06/SliderNew01.jpg" title="SliderNew01" ></a>
    
<a href="http://www.google2.com"><img src="http://127.0.0.1/wordpress/wp-content/uploads/2016/06/SliderNew02.jpg" title="SliderNew02" ></a>
    
<a href="http://www.google3.com"><img src="http://127.0.0.1/wordpress/wp-content/uploads/2016/06/SliderNew03.jpg" title="SliderNew03" ></a>
    
<a href="http://www.google4.com"><img src="http://127.0.0.1/wordpress/wp-content/uploads/2016/06/SliderNew04.jpg" title="SliderNew04" ></a>
    
</div>
<!-- End of Slideshow codes -->